home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_1732.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  236 b   |  1 lines

  1. A parameterized type is a type that is parameterized over another value or type.  Ex: List<int> is a type that is parameterized over another type, 'int'. Therefore the C++ rendition of parameterized types is provided by class templates.